home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Ware Multimedia 1995 May
/
cd Ware (Juegos) Epimundo.iso
/
DOS
/
C
/
TCCLIB.ZIP
/
GETDBL.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-01-31
|
165 b
|
12 lines
int GetLine( char *s, int len, int start );
#include <stdlib.h>
double GetDouble( void )
{
char s[20];
GetLine( s, 18, 0 );
return( atof( s ) );
}